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
| 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
| <?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 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_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 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 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 LocalizationService = game:GetService("LocalizationService") | |
| local HttpService = game:GetService("HttpService") | |
| local function createLocalizationTable(contents) | |
| local rtv = Instance.new("LocalizationTable") | |
| rtv.DevelopmentLanguage = "en-US" | |
| rtv.Contents = HttpService:JSONEncode(contents) | |
| return rtv | |
| end |
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
| -- luacheck: ignore | |
| globals = { | |
| -- global functions | |
| "script", | |
| "warn", | |
| "wait", | |
| "spawn", | |
| "delay", | |
| "tick", |
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
| function r_itr(cur) | |
| pcall(function() | |
| if cur.Texture == "rbxgameasset://Images/WORLD_PARK_flowercircle1-old" then | |
| print(cur:GetFullName()) | |
| end | |
| end) | |
| for _,child in pairs(cur:GetChildren()) do | |
| r_itr(child) |