Advertisement
refrop

mario odyssey v1

Mar 1st, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.86 KB | None | 0 0
  1. -- Objects
  2. plr = game.Players.LocalPlayer
  3. ControlGui = Instance.new("ScreenGui")
  4. Frame = Instance.new("Frame")
  5. TextButton = Instance.new("TextButton")
  6. TextBox = Instance.new("TextBox")
  7.  
  8. -- Properties
  9.  
  10. ControlGui.Name = "ControlGui"
  11. ControlGui.Parent = plr.PlayerGui
  12.  
  13. Frame.Parent = ControlGui
  14. Frame.BackgroundColor3 = Color3.new(255, 0, 0)
  15. Frame.BorderColor3 = Color3.new(0, 0, 0)
  16. Frame.BorderSizePixel = 5
  17. Frame.BackgroundTransparency = 0.5
  18. Frame.Position = UDim2.new(0, 300, 0, 200)
  19. Frame.Size = UDim2.new(0, 300, 0, 150)
  20. Frame.Active = true
  21. Frame.Draggable = true
  22.  
  23. TextButton.Parent = Frame
  24. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  25. TextButton.BorderColor3 = Color3.new(0, 0, 0)
  26. TextButton.BorderSizePixel = 5
  27. TextButton.Position = UDim2.new(0, 50, 0, 90)
  28. TextButton.Size = UDim2.new(0, 200, 0, 50)
  29. TextButton.BackgroundTransparency = 0.5
  30. TextButton.Font = Enum.Font.SourceSans
  31. TextButton.FontSize = Enum.FontSize.Size32
  32. TextButton.Text = "Control"
  33. TextButton.TextSize = 30
  34. TextButton.MouseButton1Down:connect(function()
  35. if TextButton.Text == "Control" then
  36. TextButton.Text = "UnControl"
  37. workspace[TextBox.Text].Humanoid.PlatformStand = true
  38. W1 = Instance.new("Weld",workspace)
  39. W1.Name = "Weld1"
  40. W1.Part0 = plr.Character.Torso
  41. W1.Part1 = workspace[TextBox.Text].Torso
  42. W2 = Instance.new("Weld",workspace)
  43. W2.Name = "Weld2"
  44. W2.Part0 = plr.Character.Head
  45. W2.Part1 = workspace[TextBox.Text].Head
  46. W3 = Instance.new("Weld",workspace)
  47. W3.Name = "Weld3"
  48. W3.Part0 = plr.Character.HumanoidRootPart
  49. W3.Part1 = workspace[TextBox.Text].HumanoidRootPart
  50. W4 = Instance.new("Weld",workspace)
  51. W4.Name = "Weld4"
  52. W4.Part0 = plr.Character["Left Arm"]
  53. W4.Part1 = workspace[TextBox.Text]["Left Arm"]
  54. W5 = Instance.new("Weld",workspace)
  55. W5.Name = "Weld5"
  56. W5.Part0 = plr.Character["Left Leg"]
  57. W5.Part1 = workspace[TextBox.Text]["Left Leg"]
  58. W6 = Instance.new("Weld",workspace)
  59. W6.Name = "Weld6"
  60. W6.Part0 = plr.Character["Right Arm"]
  61. W6.Part1 = workspace[TextBox.Text]["Right Arm"]
  62. W7 = Instance.new("Weld",workspace)
  63. W7.Name = "Weld7"
  64. W7.Part0 = plr.Character["Right Leg"]
  65. W7.Part1 = workspace[TextBox.Text]["Right Leg"]
  66. for i,v in pairs(plr.Character:GetChildren()) do
  67. if v.ClassName == "Part" then
  68. v.Transparency = 1
  69. end
  70. plr.Character.HumanoidRootPart.Transparency = 1
  71. if v.ClassName == "Accessory" then
  72. v.Handle.Transparency = 1
  73. end
  74. plr.Character.Humanoid.NameOcclusion = "NoOcclusion"
  75. end
  76. elseif TextButton.Text == "UnControl" then
  77. TextButton.Text = "Control"
  78. workspace[TextBox.Text].Humanoid.PlatformStand = false
  79. workspace.Weld1:Remove()
  80. workspace.Weld2:Remove()
  81. workspace.Weld3:Remove()
  82. workspace.Weld4:Remove()
  83. workspace.Weld5:Remove()
  84. workspace.Weld6:Remove()
  85. workspace.Weld7:Remove()
  86. for i,v in pairs(plr.Character:GetChildren()) do
  87. if v.ClassName == "Part" then
  88. v.Transparency = 0
  89. end
  90. plr.Character.HumanoidRootPart.Transparency = 1
  91. if v.ClassName == "Accessory" then
  92. v.Handle.Transparency = 0
  93. end
  94. plr.Character.Humanoid.NameOcclusion = "OccludeAll"
  95. end
  96. end
  97. end)
  98.  
  99. TextBox.Parent = Frame
  100. TextBox.BackgroundColor3 = Color3.new(1, 1, 1)
  101. TextBox.BorderColor3 = Color3.new(0, 0, 0)
  102. TextBox.BorderSizePixel = 5
  103. TextBox.BackgroundTransparency = 0.5
  104. TextBox.Position = UDim2.new(0, 50, 0, 20)
  105. TextBox.Size = UDim2.new(0, 200, 0, 30)
  106. TextBox.Font = Enum.Font.SourceSans
  107. TextBox.FontSize = Enum.FontSize.Size28
  108. TextBox.Text = "Name"
  109. TextBox.TextSize = 25
  110. --[[
  111. --ok :V
  112.  
  113. local part = game.Players.LocalPlayer.Character
  114. local basetemplate = "http://www.roblox.com/asset/?id="
  115. local shirt = 35491101
  116. local pants = 35491845
  117. local h = part:findFirstChild("Shirt")
  118. if h ~= nil then
  119. h.ShirtTemplate = basetemplate..shirt
  120. else
  121. local i = Instance.new("Shirt")
  122. i.Name = "Shirt"
  123. i.ShirtTemplate = basetemplate..shirt
  124. i.Parent = part
  125. end
  126. local p = part:findFirstChild("Pants")
  127. if p ~= nil then
  128. p.PantsTemplate = basetemplate..pants
  129. else
  130. local np = Instance.new("Pants")
  131. np.PantsTemplate = basetemplate..pants
  132. np.Name = "Pants"
  133. np.Parent = part
  134. end
  135. p = game.Players.LocalPlayer
  136. char = p.Character
  137. des = false
  138. fling = true
  139. dot = false
  140. falling = false
  141. jump = true
  142. --char.Shirt:Remove()
  143. --for i,v in pairs(char:GetChildren()) do if v:IsA("Pants") then v:Remove() end end
  144. for i,v in pairs(char:GetChildren()) do if v:IsA("Hat") then v.Handle:Remove() end end
  145. wait()--shirt = Instance.new("Shirt", char)
  146. --shirt.Name = "Shirt"
  147. --pants = Instance.new("Pants", char)
  148. --pants.Name = "Pants"
  149.  
  150. --char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=22287244"
  151. --char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=22287352"
  152. tp = true
  153. shoot = true
  154. hum = char.Humanoid
  155. punch = true
  156. neckp = char.Torso.Neck.C0
  157. neck = char.Torso.Neck
  158. hum.MaxHealth = 999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999
  159. wait()
  160. hum.Health =hum.MaxHealth
  161. des = false
  162. root=char.HumanoidRootPart
  163. torso = char.Torso
  164. char.Head.face.Texture = "rbxassetid://86157358"
  165. local ChatService = game:GetService("Chat")
  166. local player = game.Players.LocalPlayer
  167. lig = Instance.new("PointLight",player.Character.Torso)
  168. lig.Color=Color3.new(255,0,0)
  169. m=player:GetMouse()
  170. bb = Instance.new("BillboardGui",player.Character.Head)
  171. bb.Enabled = true
  172. function newRay(start,face,range,wat)
  173. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  174. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  175. return rey,hit,pos
  176. end
  177. --Made by commag
  178.  
  179. local s = Instance.new("Sound")
  180.  
  181. s.Name = "Sound"
  182. s.SoundId = "http://www.roblox.com/asset/?id=898506256"
  183. s.Volume = 70
  184. s.Looped = false
  185. s.archivable = false
  186.  
  187. s.Parent = game.Workspace
  188.  
  189. wait(3)
  190.  
  191. s:play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement