Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local storage = game.Workspace.jassm11
- function Chat(v,word)
- local vote = Instance.new("StringValue")
- vote.Name = v
- vote.Value = word
- vote.Parent = storage.ChatQueue
- end
- function SetDisplayedWord(word)
- storage.CurrentWord.Value = word
- end
- function GetDisplayedWord()
- return(storage.CurrentWord.Value)
- end
- function SetTimer(time)
- storage.Timer.Value = time
- end
- function GetTimer()
- return(storage.Timer.Value)
- end
- function SetArtist(name)
- storage.Artist.Value = name
- end
- function GetArtist()
- return(storage.Artist.Value)
- end
- function TriggerCheatAlert()
- storage.CallCheaterVote.Value = not storage.CallCheaterVote.Value
- end
- function ClearChatQueue()
- storage.ChatQueue:ClearAllChildren()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement