Advertisement
Ixcedd

Texting Simulator GUI [Lua]

Apr 23rd, 2019
377
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.99 KB | None | 0 0
  1. -- Texting Simulator GUI (Updated April 22 2019)
  2. -- Created by Ixcedd
  3. -- Can be loaded on a lvl 6 exploit, so it isn't too complicated.
  4.  
  5. -- Instances:
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local Text = Instance.new("TextLabel")
  9. local text = Instance.new("TextButton")
  10. local money = Instance.new("TextButton")
  11. local diamond = Instance.new("TextButton")
  12. local emoji = Instance.new("TextButton")
  13. --Properties:
  14. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  15.  
  16. Frame.Parent = ScreenGui
  17. Frame.BackgroundColor3 = Color3.new(0, 0, 100)
  18. Frame.Position = UDim2.new(0.0627943501, 0, 0.0966325104, 0)
  19. Frame.Size = UDim2.new(0, 254, 0, 104)
  20.  
  21. Text.Name = "Text"
  22. Text.Parent = Frame
  23. Text.BackgroundColor3 = Color3.new(169, 169, 172)
  24. Text.Position = UDim2.new(0.106299214, 0, 0, 0)
  25. Text.Size = UDim2.new(0, 200, 0, 18)
  26. Text.Font = Enum.Font.SourceSans
  27. Text.Text = "Texting Simulator GUI by Ixcedd"
  28. Text.TextColor3 = Color3.new(0, 0, 0)
  29. Text.TextSize = 14
  30.  
  31. text.Name = "text"
  32. text.Parent = Frame
  33. text.BackgroundColor3 = Color3.new(169, 169, 172)
  34. text.Position = UDim2.new(0.0669291317, 0, 0.288461477, 0)
  35. text.Size = UDim2.new(0, 106, 0, 30)
  36. text.Font = Enum.Font.SourceSans
  37. text.Text = "Auto Text"
  38. text.TextColor3 = Color3.new(0, 0, 0)
  39. text.TextSize = 14
  40. text.MouseButton1Down:Connect(function()
  41. for i = 1, 50000 do
  42. game:GetService("ReplicatedStorage").ToolEvents.CashEvent:FireServer()
  43. end
  44. end)
  45.  
  46. money.Name = "money"
  47. money.Parent = Frame
  48. money.BackgroundColor3 = Color3.new(169, 169, 172)
  49. money.Position = UDim2.new(0.527559042, 0, 0.634615362, 0)
  50. money.Size = UDim2.new(0, 106, 0, 30)
  51. money.Font = Enum.Font.SourceSans
  52. money.Text = "BROKEN"
  53. money.TextColor3 = Color3.new(0, 0, 0)
  54. money.TextSize = 14
  55. money.MouseButton1Down:Connect(function()
  56. while true do
  57. wait()
  58. local A_1 = 10000000000
  59. local A_2 = "Code02"
  60. local Event = game:GetService("ReplicatedStorage").EnterCode
  61. Event:FireServer(A_1, A_2)
  62. end
  63. end)
  64.  
  65.  
  66. diamond.Name = "diamond"
  67. diamond.Parent = Frame
  68. diamond.BackgroundColor3 = Color3.new(169, 169, 172)
  69. diamond.Position = UDim2.new(0.527559042, 0, 0.288461477, 0)
  70. diamond.Size = UDim2.new(0, 106, 0, 30)
  71. diamond.Font = Enum.Font.SourceSans
  72. diamond.Text = "Diamond Grabber (Buggy)"
  73. diamond.TextColor3 = Color3.new(0, 0, 0)
  74. diamond.TextSize =12
  75. diamond.MouseButton1Down:Connect(function()
  76.     local parts = game.workspace.Gems:GetChildren()
  77. local players = game:GetService('Players')
  78.  
  79. for i = 1, #parts do
  80. parts[i].CFrame = players.LocalPlayer.Character.HumanoidRootPart.CFrame
  81. end
  82.  
  83. end)
  84.  
  85. emoji.Name = "emoji"
  86. emoji.Parent = Frame
  87. emoji.BackgroundColor3 = Color3.new(169, 169, 172)
  88. emoji.Position = UDim2.new(0.0669291168, 0, 0.634615362, 0)
  89. emoji.Size = UDim2.new(0, 106, 0, 30)
  90. emoji.Font = Enum.Font.SourceSans
  91. emoji.Text = "Best Emoji"
  92. emoji.TextColor3 = Color3.new(0, 0, 0)
  93. emoji.TextSize = 14
  94. emoji.MouseButton1Down:Connect(function()
  95. game:GetService("ReplicatedStorage").Events.EmojiEquip:FireServer(37)
  96. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement