IVMemeVI

Untitled

Jun 26th, 2018
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. local guiname = "ScreenGui"
  2. local temporaryname = "VersionNmb"
  3.  
  4. game.StarterGui:FindFirstChild(guiname).Name = temporaryname
  5.  
  6. game.Players.PlayerAdded:connect(function(player)
  7. player.CharacterAdded:connect(function(character)
  8.  
  9. game.Players.LocalPlayer.PlayerGui:WaitForChild(guiname)
  10. game.Players.LocalPlayer.PlayerGui.ScreenGui.Frame.Beppo.Visible = true
  11. game.Players.LocalPlayer.PlayerGui.ScreenGui.Frame.Jiren.Visible = true
  12.  
  13. end)
  14. end)
  15.  
  16. game:GetService("UserInputService").InputBegan:connect(function(inputObject, gameProcessedEvent)
  17. if inputObject.KeyCode == Enum.KeyCode.P and game.Players.LocalPlayer.PlayerGui:FindFirstChild(guiname) then
  18. if game.Players.LocalPlayer.PlayerGui:FindFirstChild(guiname).Enabled == false then
  19. game.Players.LocalPlayer.PlayerGui:FindFirstChild(guiname).Enabled = true
  20. else
  21. game.Players.LocalPlayer.PlayerGui:FindFirstChild(guiname).Enabled = false
  22. end
  23. end
  24. end)
  25. rs= game.ReplicatedStorage
  26.  
  27. rs.GP1:FireServer("Jiren")
  28. rs.GP1:FireServer("Beppo")
  29. rs.GP1:FireServer("TheWorld")
  30. rs.GP1:FireServer("Kenshiro")
  31. rs.GP1:FireServer("CrazyDiamond")
  32. rs.GP1:FireServer("KillerQueen")
  33. rs.GP1:FireServer("TheHand")
  34. rs.GP1:FireServer("SilverChariot")
  35. rs.GP1:FireServer("StarPlatinum")
  36. rs.GP1:FireServer("HierophantGreen")
  37. rs.GP1:FireServer("Part3Platinum")
Advertisement
Add Comment
Please, Sign In to add comment