of     1   

legoblockhead2001
#152940907Thursday, January 01, 2015 12:36 AM GMT

Ok guys so this script was made to make the screen turn black for a fraction of a second and teleport the player to a specific point, but the GUI won't go away. local x = 0 local y = 0 local z = 0 script.Parent.Touched:connect(function(touch) if touch and touch.Parent and game.Players:GetPlayerFromCharacter(touch.Parent) then plr = game.Players:GetPlayerFromCharacter(touch.Parent) gui = Instance.new("ScreenGui", plr.PlayerGui) frm = Instance.new("Frame",gui) frm.Size = UDim2.new(1,0,1,0) frm.Position = UDim2.new(0,0,0,0) frm.BackgroundColor3 = Color3.new(0,0,0) frm.BorderSizePixel = 0 plr.Character:MoveTo(Vector3.new(59.85, 120.925, -10.036)) for i = 0,1,0.05 do frm.BackgroundTransparency = i wait(.5) end gui:Destroy() end end) If you could fix it that would be great. Want list: Lightbulb, Tornado hat.
championbuilder
#152941567Thursday, January 01, 2015 12:44 AM GMT

What output are you getting, because it works perfectly.
legoblockhead2001
#152942248Thursday, January 01, 2015 12:52 AM GMT

Ok so the script runs fine, I teleport, screen turns black, etc. But then the black screen doesn't go away. Want list: Lightbulb, Tornado hat.
championbuilder
#152942864Thursday, January 01, 2015 1:00 AM GMT

It should. It has to be an issue with you, because it works fine for me.
legoblockhead2001
#152945583Thursday, January 01, 2015 1:33 AM GMT

Where would it have gone wrong? Make a 500 wide, 1 tall, 500 long brick, put the script in it and make it a model, please. Want list: Lightbulb, Tornado hat.

    of     1