Advertisement
ExluZive

Roblox Esp + Chams (Best)

Aug 17th, 2024 (edited)
3,620
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.41 KB | Gaming | 0 0
  1. local screenGui = Instance.new("ScreenGui")
  2. screenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  3.  
  4. local frame = Instance.new("Frame")
  5. frame.Size = UDim2.new(0, 200, 0, 100)
  6. frame.Position = UDim2.new(0.5, -100, 0.5, -50)
  7. frame.BackgroundColor3 = Color3.new(1, 1, 1)
  8. frame.Parent = screenGui
  9.  
  10. local title = Instance.new("TextLabel")
  11. title.Size = UDim2.new(1, 0, 0, 20)
  12. title.Position = UDim2.new(0, 0, 0, -20)
  13. title.Text = "Key in Discord"
  14. title.TextColor3 = Color3.new(1, 1, 1)
  15. title.BackgroundColor3 = Color3.new(0, 0, 0)
  16. title.Parent = frame
  17.  
  18. local dragging
  19. local dragInput
  20. local dragStart
  21. local startPos
  22.  
  23. local function update(input)
  24. local delta = input.Position - dragStart
  25. frame.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  26. end
  27.  
  28. title.InputBegan:Connect(function(input)
  29. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  30. dragging = true
  31. dragStart = input.Position
  32. startPos = frame.Position
  33.  
  34. input.Changed:Connect(function()
  35. if input.UserInputState == Enum.UserInputState.End then
  36. dragging = false
  37. end
  38. end)
  39. end
  40. end)
  41.  
  42. title.InputChanged:Connect(function(input)
  43. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  44. dragInput = input
  45. end
  46. end)
  47.  
  48. title.InputEnded:Connect(function(input)
  49. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  50. dragging = false
  51. dragInput = nil
  52. end
  53. end)
  54.  
  55. game:GetService("UserInputService").InputChanged:Connect(function(input)
  56. if input == dragInput and dragging then
  57. update(input)
  58. end
  59. end)
  60.  
  61. local KeySystem = Instance.new("TextBox")
  62. KeySystem.Size = UDim2.new(1, 0, 0.5, 0)
  63. KeySystem.Position = UDim2.new(0, 0, 0, 0)
  64. KeySystem.Text = "Enter the Key"
  65. KeySystem.TextColor3 = Color3.new(0, 0, 0)
  66. KeySystem.BackgroundTransparency = 0.5
  67. KeySystem.BackgroundColor3 = Color3.new(1, 1, 1)
  68. KeySystem.TextWrapped = true
  69. KeySystem.Parent = frame
  70.  
  71. local SubmitButton = Instance.new("TextButton")
  72. SubmitButton.Size = UDim2.new(0.5, 0, 0.5, 0)
  73. SubmitButton.Position = UDim2.new(0, 0, 0.5, 0)
  74. SubmitButton.Text = "Submit"
  75. SubmitButton.Parent = frame
  76.  
  77. local CloseButton = Instance.new("TextButton")
  78. CloseButton.Size = UDim2.new(0, 20, 0, 20)
  79. CloseButton.Position = UDim2.new(1, -20, 0, 0)
  80. CloseButton.Text = "X"
  81. CloseButton.TextColor3 = Color3.new(1, 1, 1)
  82. CloseButton.BackgroundColor3 = Color3.new(1, 0, 0)
  83. CloseButton.Parent = frame
  84.  
  85. CloseButton.MouseButton1Click:Connect(function()
  86. screenGui:Destroy()
  87. end)
  88.  
  89. local GetKeyButton = Instance.new("TextButton")
  90. GetKeyButton.Size = UDim2.new(0.5, 0, 0.5, 0)
  91. GetKeyButton.Position = UDim2.new(0.5, 0, 0.5, 0)
  92. GetKeyButton.Text = "Get Key"
  93. GetKeyButton.Parent = frame
  94. --------------------------------------------------------------------------
  95. SubmitButton.MouseButton1Click:Connect(function()
  96. local KeySystem = KeySystem.Text
  97. if KeySystem == "Kikimora" then
  98. screenGui:Destroy()
  99.  
  100. loadstring(game:HttpGet("https://pastebin.com/raw/Wqks4bX2"))()
  101.  
  102. end
  103. end)
  104.  
  105. GetKeyButton.MouseButton1Click:Connect(function()
  106. setclipboard("https://discord.com/invite/p63eJrYhZG")
  107. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement