Advertisement
efestyle

Untitled

Jan 20th, 2019
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.81 KB | None | 0 0
  1. -- Credits efestyle#4948
  2. local WizardSim = Instance.new("ScreenGui")
  3. local frame = Instance.new("Frame")
  4. local Open = Instance.new("TextButton")
  5. local main = Instance.new("Frame")
  6. local WizardTrainingSim = Instance.new("TextBox")
  7. local nfGems = Instance.new("TextButton")
  8. local Credits = Instance.new("TextBox")
  9. local AfkFarm = Instance.new("TextButton")
  10. local WalkSpeedX = Instance.new("TextButton")
  11. local Close = Instance.new("TextButton")
  12. --Properties:
  13. WizardSim.Name = "Wizard Sim"
  14. WizardSim.Parent = game.CoreGui
  15.  
  16. frame.Name = "frame"
  17. frame.Parent = WizardSim
  18. frame.BackgroundColor3 = Color3.new(1, 1, 1)
  19. frame.Position = UDim2.new(0, 0, 0.736593008, 0)
  20. frame.Size = UDim2.new(0, 88, 0, 23)
  21. frame.Style = Enum.FrameStyle.DropShadow
  22.  
  23. Open.Name = "Open"
  24. Open.Parent = frame
  25. Open.BackgroundColor3 = Color3.new(0, 0, 0)
  26. Open.BackgroundTransparency = 0.89999997615814
  27. Open.Position = UDim2.new(-0.119834587, 0, -0.803403139, 0)
  28. Open.Size = UDim2.new(0, 87, 0, 21)
  29. Open.Font = Enum.Font.SourceSansBold
  30. Open.Text = "Open"
  31. Open.TextColor3 = Color3.new(1, 1, 1)
  32. Open.TextSize = 14
  33. Open.TextStrokeColor3 = Color3.new(1, 1, 1)
  34. Open.MouseButton1Down:connect(function()
  35. main.Visible = true
  36. frame.Visible = false
  37. end)
  38.  
  39. main.Name = "main"
  40. main.Parent = WizardSim
  41. main.BackgroundColor3 = Color3.new(1, 1, 1)
  42. main.Position = UDim2.new(0.138157889, 0, 0.591482639, 0)
  43. main.Size = UDim2.new(0, 190, 0, 206)
  44. main.Visible = false
  45. main.Style = Enum.FrameStyle.DropShadow
  46. main.Active = true
  47. main.Draggable = true
  48.  
  49. WizardTrainingSim.Name = "Wizard Training Sim"
  50. WizardTrainingSim.Parent = main
  51. WizardTrainingSim.BackgroundColor3 = Color3.new(0, 0, 0)
  52. WizardTrainingSim.BackgroundTransparency = 0.89999997615814
  53. WizardTrainingSim.Position = UDim2.new(-0.0118690878, 0, -0.0434312597, 0)
  54. WizardTrainingSim.Size = UDim2.new(0, 178, 0, 19)
  55. WizardTrainingSim.ClearTextOnFocus = false
  56. WizardTrainingSim.Font = Enum.Font.SourceSans
  57. WizardTrainingSim.Text = "Wizard Training Simulator"
  58. WizardTrainingSim.TextColor3 = Color3.new(1, 1, 1)
  59. WizardTrainingSim.TextSize = 14
  60.  
  61. nfGems.Name = "İnf Gems"
  62. nfGems.Parent = main
  63. nfGems.BackgroundColor3 = Color3.new(0, 0, 0)
  64. nfGems.BackgroundTransparency = 0.89999997615814
  65. nfGems.Position = UDim2.new(0.161108062, 0, 0.180695623, 0)
  66. nfGems.Size = UDim2.new(0, 116, 0, 24)
  67. nfGems.Font = Enum.Font.SciFi
  68. nfGems.Text = "İnf Gems Glitch"
  69. nfGems.TextColor3 = Color3.new(1, 1, 1)
  70. nfGems.TextSize = 14
  71. nfGems.MouseButton1Down:connect(function()
  72. while true do wait()
  73. local Remote = game.ReplicatedStorage['QuestTime']
  74.  
  75. local Arguments = {
  76.         [1] = false
  77. }
  78.  
  79. Remote:FireServer(unpack(Arguments))
  80. end
  81. end)
  82.  
  83. Credits.Name = "Credits"
  84. Credits.Parent = main
  85. Credits.BackgroundColor3 = Color3.new(0, 0, 0)
  86. Credits.BackgroundTransparency = 0.89999997615814
  87. Credits.Position = UDim2.new(-0.017132245, 0, 0.903170645, 0)
  88. Credits.Size = UDim2.new(0, 178, 0, 19)
  89. Credits.ClearTextOnFocus = false
  90. Credits.Font = Enum.Font.SourceSans
  91. Credits.Text = "Credits:efestyle#4948"
  92. Credits.TextColor3 = Color3.new(1, 1, 1)
  93. Credits.TextSize = 14
  94.  
  95. AfkFarm.Name = "Afk Farm"
  96. AfkFarm.Parent = main
  97. AfkFarm.BackgroundColor3 = Color3.new(0, 0, 0)
  98. AfkFarm.BackgroundTransparency = 0.89999997615814
  99. AfkFarm.Position = UDim2.new(0.155844897, 0, 0.413705349, 0)
  100. AfkFarm.Size = UDim2.new(0, 116, 0, 24)
  101. AfkFarm.Font = Enum.Font.SciFi
  102. AfkFarm.Text = "Afk Farm"
  103. AfkFarm.TextColor3 = Color3.new(1, 1, 1)
  104. AfkFarm.TextSize = 14
  105. AfkFarm.MouseButton1Down:connect(function()
  106. local me = game.Players.LocalPlayer.Character
  107. spawn(function()
  108. while wait() do
  109. for i,v in pairs(me:GetChildren()) do
  110. if v:isA("Tool") then
  111. v.StaffClient.ChargeFunction:InvokeServer()
  112. game.Players.LocalPlayer.Backpack.Meditate.MediClient.MeditationRemote:InvokeServer()
  113. end
  114. end
  115. end
  116. end)
  117. end)
  118.  
  119. WalkSpeedX.Name = "WalkSpeed (X)"
  120. WalkSpeedX.Parent = main
  121. WalkSpeedX.BackgroundColor3 = Color3.new(0, 0, 0)
  122. WalkSpeedX.BackgroundTransparency = 0.89999997615814
  123. WalkSpeedX.Position = UDim2.new(0.155844897, 0, 0.680695653, 0)
  124. WalkSpeedX.Size = UDim2.new(0, 116, 0, 24)
  125. WalkSpeedX.Font = Enum.Font.SciFi
  126. WalkSpeedX.Text = "WalkSpeed (X)"
  127. WalkSpeedX.TextColor3 = Color3.new(1, 1, 1)
  128. WalkSpeedX.TextSize = 14
  129. WalkSpeedX.MouseButton1Down:connect(function()
  130.     local walkspeedplayer = game:GetService("Players").LocalPlayer
  131.     local walkspeedmouse = walkspeedplayer:GetMouse()
  132.    
  133.     local walkspeedenabled = false
  134.    
  135.     function x_walkspeed(key)
  136.         if (key == "x") then
  137.             if walkspeedenabled == false then
  138.                 _G.WS = 200;
  139.                 local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  140.                 Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  141.                 Humanoid.WalkSpeed = _G.WS;
  142.                 end)
  143.                 Humanoid.WalkSpeed = _G.WS;
  144.                
  145.                 walkspeedenabled = true
  146.             elseif walkspeedenabled == true then
  147.                 _G.WS = 20;
  148.                 local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  149.                 Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  150.                 Humanoid.WalkSpeed = _G.WS;
  151.                 end)
  152.                 Humanoid.WalkSpeed = _G.WS;
  153.                
  154.                 walkspeedenabled = false
  155.             end
  156.         end
  157.     end
  158.    
  159.     walkspeedmouse.KeyDown:connect(x_walkspeed)
  160.    
  161. end)
  162.  
  163. Close.Name = "Close"
  164. Close.Parent = main
  165. Close.BackgroundColor3 = Color3.new(0, 0, 0)
  166. Close.BackgroundTransparency = 0.89999997615814
  167. Close.Position = UDim2.new(0.927458704, 0, -0.0185281783, 0)
  168. Close.Size = UDim2.new(0, 13, 0, 14)
  169. Close.Font = Enum.Font.SciFi
  170. Close.Text = "X"
  171. Close.TextColor3 = Color3.new(1, 1, 1)
  172. Close.TextSize = 14
  173. Close.MouseButton1Down:connect(function()
  174. frame.Visible = true
  175. main.Visible = false
  176. end)
  177. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement