Advertisement
kipr987

Aim

Aug 5th, 2023 (edited)
394
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.00 KB | None | 0 0
  1. pcall(function()
  2.     if game:GetService("CoreGui"):FindFirstChild("Key") then
  3.         game:GetService("CoreGui"):FindFirstChild("Key"):Destroy()
  4.     end
  5. end)
  6.  
  7. local screengui = Instance.new("ScreenGui", game:GetService("CoreGui"))
  8. screengui.Name = "Key"
  9. screengui.IgnoreGuiInset = true
  10. screengui.ResetOnSpawn = false
  11. local a = "S"
  12. local A1 = "l"
  13. local b = "l"
  14. local b1 = "a"
  15. local main = Instance.new("Frame", screengui)
  16. main.Position = UDim2.new(0.428, 0,0.426, 0)
  17. main.Size = UDim2.new(0.144, 0,0.147, 0)
  18. main.BackgroundColor3 = Color3.new(0.121569, 0.121569, 0.121569)
  19. local corner = Instance.new("UICorner", main)
  20. corner.CornerRadius = UDim.new(0,3)
  21. local B = "i"
  22. local a1 = "e"
  23. local A = "y"
  24. local textkey = Instance.new("TextLabel", main)
  25. textkey.Text = "Key!"
  26. textkey.TextColor3 = Color3.new(1, 1, 1)
  27. textkey.BackgroundTransparency = 1
  28. textkey.Position = UDim2.new(0.22, 0,0, 0)
  29. textkey.Size = UDim2.new(0.553, 0,0.27, 0)
  30. textkey.FontFace = Font.new("rbxasset://fonts/families/SourceSansPro.json", Enum.FontWeight.Bold, Enum.FontStyle.Normal)
  31. textkey.TextScaled = true
  32. local frame = Instance.new("Frame", main)
  33. frame.Position = UDim2.new(0.164, 0,0.502, 0)
  34. frame.Size = UDim2.new(0.67, 0,0.309, 0)
  35. frame.BackgroundTransparency = 1
  36. Instance.new("UICorner", frame)
  37. local stoke = Instance.new("UIStroke", frame)
  38. stoke.Color = Color3.new(1, 1, 1)
  39. local stringbox = Instance.new("TextBox", frame)
  40. stringbox.Position = UDim2.new(0, 0,0, 0)
  41. stringbox.Size = UDim2.new(1,0,1,0)
  42. stringbox.TextColor3 = Color3.new(1, 1, 1)
  43. stringbox.FontFace = Font.new("rbxasset://fonts/families/SourceSansPro.json", Enum.FontWeight.Bold, Enum.FontStyle.Normal)
  44. stringbox.TextScaled = true
  45. stringbox.BackgroundTransparency = 1
  46. stringbox.Text = ""
  47. local string2 = tostring(b1..b..A1..B..A..a1..a):reverse()
  48. stringbox.FocusLost:Connect(function()
  49.     local string1 = tostring(stringbox.Text)
  50.     if string.find(string1, string2) then
  51.         screengui:Destroy()
  52.         loadstring(game:HttpGet("https://pastebin.com/raw/kyyYisE6"))()
  53.     end
  54. end)
  55.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement