Advertisement
JW2

CMD Roblox Script

JW2
Dec 29th, 2022 (edited)
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. -- Command GUI HACK --
  2.  
  3. local CMDGUI = Instance.new("ScreenGui")
  4. local TweenService = game:GetService("TweenService")
  5. local Tweeninfo = TweenInfo.new(1,Enum.EasingStyle.Linear,Enum.EasingDirection.Out,0,false,0)
  6. local player = game.Players.LocalPlayer
  7. local character = player.Character
  8. local PlayerGui = player.PlayerGui
  9. local LoadingText = Instance.new("TextLabel")
  10. CMDGUI.Parent = PlayerGui
  11. LoadingText.Parent = CMDGUI
  12. LoadingText.Size = UDim2.new(1,0,1,0) -- full of the Screen.
  13. LoadingText.Text = "Loading... pls wait."
  14. LoadingText.TextColor3 = Color3.new(255,255,255)
  15. LoadingText.BackgroundColor3 = Color3.new(0,0,0)
  16. LoadingText.TextScaled = true
  17. wait(2)
  18. TweenService:Create(LoadingText,Tweeninfo,{Transparency = 1}):Play()
  19. local TipsText = Instance.new("TextLabel")
  20. TipsText.Parent = CMDGUI
  21. TipsText.Position = UDim2.new(0.451, 0,0.422, 0)
  22. TipsText.Text = "Press Q to Kill target if mouse is at the target."
  23. game.UserInputService.InputBegan:Connect(function(input)
  24. if input.KeyCode == Enum.KeyCode.Q then
  25. local characterTarget = mouse.hit.Parent
  26. characterTarget:FindFirstChild("Humanoid"):TakeDamage(100)
  27. end
  28. end)
  29. player.Chatted:Connect(function(msg)
  30. if msg == "give me fast speed" then
  31. character.Humanoid.WalkSpeed += 10
  32. end
  33. if msg == "tp" then
  34. character:MoveTo(mouse.Target.Position)
  35. end
  36. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement