Advertisement
RyanDaCoder

FIXED PHONE

Sep 8th, 2017
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. local controlphone = Instance.new("Tool")
  2. controlphone.Name = "iPhone"
  3. controlphone.Parent = game.Players.LocalPlayer.Backpack
  4. local phone = Instance.new("Part")
  5. phone.BrickColor = BrickColor.new("Really black")
  6. phone.Size = Vector3.new(1.2, 2.2, 0.4)
  7. phone.Name = "Handle"
  8. phone.Parent = game.Players.LocalPlayer.Backpack.iPhone
  9. local mrdecal = Instance.new("Decal")
  10. mrdecal.Texture = "http://www.roblox.com/asset/?id=488738437"
  11. mrdecal.Face = "Front"
  12. mrdecal.Name = "Mr. Decal"
  13. mrdecal.Parent = phone
  14. local phoneforyou = Instance.new("ScreenGui")
  15. local TextLabel = Instance.new("TextLabel")
  16. local bypass = Instance.new("TextButton")
  17. phoneforyou.Name = "phoneforyou"
  18. phoneforyou.Parent = game.Players.LocalPlayer.PlayerGui
  19. TextLabel.Parent = phoneforyou
  20. TextLabel.Active = true
  21. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  22. TextLabel.Draggable = true
  23. TextLabel.Position = UDim2.new(0, 207, 0, 95)
  24. TextLabel.Size = UDim2.new(0, 200, 0, 19)
  25. TextLabel.Font = Enum.Font.SourceSans
  26. TextLabel.FontSize = Enum.FontSize.Size14
  27. TextLabel.Text = "iPhone"
  28. TextLabel.TextSize = 14
  29. bypass.Name = "bypass"
  30. bypass.Parent = TextLabel
  31. bypass.BackgroundColor3 = Color3.new(1, 1, 1)
  32. bypass.Position = UDim2.new(0, 0, 0, 19)
  33. bypass.Size = UDim2.new(0, 200, 0, 221)
  34. bypass.Font = Enum.Font.SourceSans
  35. bypass.FontSize = Enum.FontSize.Size14
  36. bypass.Text = "Create Bypassed Decal"
  37. bypass.TextSize = 14
  38. bypass.MouseButton1Click:connect(function()
  39. local part = Instance.new("Part")
  40. part.Anchored = true
  41. part.Size = Vector3.new(423.6, 1130.6, 0.4)
  42. part.Name = "Bypassed"
  43. part.Position = Vector3.new(0, 583.6, 0)
  44. part.Parent = game.Workspace
  45. local bypasseddecal = Instance.new("Decal")
  46. bypasseddecal.Texture = "http://www.roblox.com/asset/?id=1034037998"
  47. bypasseddecal.Parent = part
  48. bypasseddecal.Face = "Front"
  49. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement