This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local SPUtil = require(game.ReplicatedStorage.Shared.SPUtil) | |
| local CurveUtil = require(game.ReplicatedStorage.Shared.CurveUtil) | |
| local NoteBase = require(game.ReplicatedStorage.Local.NoteBase) | |
| local NoteResult = require(game.ReplicatedStorage.Shared.NoteResult) | |
| local SFXManager = require(game.ReplicatedStorage.Local.SFXManager) | |
| local DebugOut = require(game.ReplicatedStorage.Local.DebugOut) | |
| local TriggerNoteEffect = require(game.ReplicatedStorage.Effects.TriggerNoteEffect) | |
| local HoldingNoteEffect = require(game.ReplicatedStorage.Effects.HoldingNoteEffect) | |
| local FlashEvery = require(game.ReplicatedStorage.Shared.FlashEvery) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local SPUtil = require(game.ReplicatedStorage.Shared.SPUtil) | |
| local CurveUtil = require(game.ReplicatedStorage.Shared.CurveUtil) | |
| local NoteBase = require(game.ReplicatedStorage.Local.NoteBase) | |
| local NoteResult = require(game.ReplicatedStorage.Shared.NoteResult) | |
| local SFXManager = require(game.ReplicatedStorage.Local.SFXManager) | |
| local HoldingNoteEffect = require(game.ReplicatedStorage.Effects.HoldingNoteEffect) | |
| local TriggerNoteEffect = require(game.ReplicatedStorage.Effects.TriggerNoteEffect) | |
| local Note = {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local SPUtil = require(game.ReplicatedStorage.Shared.SPUtil) | |
| local CurveUtil = require(game.ReplicatedStorage.Shared.CurveUtil) | |
| local NoteBase = require(game.ReplicatedStorage.Local.NoteBase) | |
| local NoteResult = require(game.ReplicatedStorage.Shared.NoteResult) | |
| local SFXManager = require(game.ReplicatedStorage.Local.SFXManager) | |
| local HoldingNoteEffect = require(game.ReplicatedStorage.Effects.HoldingNoteEffect) | |
| local TriggerNoteEffect = require(game.ReplicatedStorage.Effects.TriggerNoteEffect) | |
| local NOTE_HEIGHT = 1.5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local SPUtil = require(game.ReplicatedStorage.Shared.SPUtil) | |
| local CurveUtil = require(game.ReplicatedStorage.Shared.CurveUtil) | |
| local NoteBase = require(game.ReplicatedStorage.Local.NoteBase) | |
| local NoteResult = require(game.ReplicatedStorage.Shared.NoteResult) | |
| local SFXManager = require(game.ReplicatedStorage.Local.SFXManager) | |
| local DebugOut = require(game.ReplicatedStorage.Local.DebugOut) | |
| local TriggerNoteEffect = require(game.ReplicatedStorage.Effects.TriggerNoteEffect) | |
| local HoldingNoteEffect = require(game.ReplicatedStorage.Effects.HoldingNoteEffect) | |
| local FlashEvery = require(game.ReplicatedStorage.Shared.FlashEvery) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $json = file_get_contents('php://input'); | |
| $obj = json_decode($json); | |
| $filename = $obj->PlaceID . ".txt"; | |
| $file = fopen($filename, "a+") or die("Unable to open file!"); | |
| fwrite($file,$obj->Text . "\n"); | |
| fclose($file); | |
| ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local rtv = {} | |
| rtv.AudioAssetId = "rbxassetid://844610514" | |
| rtv.AudioFilename = "Party Rock Anthem" | |
| rtv.AudioArtist = "LMFAO" | |
| rtv.AudioCoverImageAssetId = "rbxgameasset://Images/COVERIMG_gangnamstyle_psy" | |
| rtv.AudioDescription = "In the house tn" | |
| rtv.AudioDifficulty = 3 | |
| rtv.AudioTimeOffset = -75 | |
| rtv.AudioVolume = 1.0 | |
| local maxPoints = 404300 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local PhysicsService = game:GetService("PhysicsService") | |
| local Players = game:GetService("Players") | |
| local characterGroupName = "Characters" | |
| local characterGroup = PhysicsService:CreateCollisionGroup(characterGroupName) | |
| PhysicsService:CollisionGroupSetCollidable(characterGroupName, characterGroupName, false) | |
| local function addChildrenToGroup(instance, groupName) | |
| for _, v in pairs(instance:GetChildren()) do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| import json | |
| import io | |
| def use_i_token(i_token, i_token_to_key): | |
| key = i_token_to_key[i_token] | |
| return key == "en-US" or key == "fr" or key == "de" or key == "it" or key == "ja" or key == "pt-BR" or key == "ru" or key == "es" | |
| i_line = 0 | |
| i_token_to_key = {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local selection_part = game.Selection:Get()[1] | |
| function r_itr(cur) | |
| pcall(function() | |
| local position = cur.Position | |
| local size = cur.Size | |
| if typeof(size) ~= "UDim2" or typeof(position) ~= "UDim2" then | |
| return |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Motor6D creator | |
| local target_part = game.Workspace.StarMachineHumanoid.NeckCenter | |
| local selection_part = game.Selection:Get()[1] | |
| local motor6d = Instance.new("Motor6D") | |
| motor6d.Part0 = target_part | |
| motor6d.Part1 = selection_part | |
| motor6d.C1 = CFrame.new(0,0,0) | |
| motor6d.C0 = motor6d.Part0.CFrame:inverse() * motor6d.Part1.CFrame |